
/* General structure */
body {
    overflow-x: hidden;
    background-color: black;
    color: white;
}

body, html {
    height: 100%;
}

/* Buttons */
.button a{
    text-decoration: none;
    display: inline-block;
    background-color: rgba(20,20,20, 0.5);
    color: #fff;
    font-size: 15px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    transition-property: transform, box-shadow, -webkit-text-stroke, background-color;
    transition-duration: 0.5s;
}

.button a:hover{
    -webkit-text-stroke: 1px white;
    transform: scale(1.1);
    background-color: rgba(79, 195, 247, 0.7);
    box-shadow: 
    0 3px 5px 0 
    rgba(79, 195, 247, 2), 
    0 3px 30px 0 
    rgba(79, 195, 247, 2);
}

/* Hero Section */
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../media/pictures/mri-scan.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-heading {
    font-size: 100px;
    padding-bottom: 30px;
    color: white;
}

/* Features */
.main-content {
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: dimgrey;
    overflow: hidden;
}
.main-content section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 10vw;
    padding-right: 10vw;
}

/* Divider after Hero Section */
.custom-shape-divider-top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: black;
}
.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(148% + 1.3px);
    height: 100px;
}
.custom-shape-divider-top .shape-fill{
    fill:rgb(24, 64, 110);
}

/* Left text Right image sections */
.L-text-R-img {
    display: flex;
    padding-left: 5px;
}
.L-text-R-img p{
    font-size: large;
    padding-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.L-text-R-img img{
    display: block;
    align-items: right;
    min-width: 30vh;
    max-width: 40vw;
    max-height: 25rem;
}

/* Mobile adaptive breakpoint for left-side text + right-side image */
@media only screen and (max-width: 1080px) {
    /* For mobile phones: */
    .L-text-R-img{
        display: flex;
        flex-wrap: wrap;
        padding-left: 5px;
        align-items: center;
        justify-content: center;
    }
    .L-text-R-img p{
        padding-right: 5px;
        align-items: center;
        justify-content: center;
    }
    .L-text-R-img img{
        min-width: 50vw;
        max-width: 70vw;
        min-height: 50vw;
        max-height: 70vw;
    }
}

/* Footer - workaround to remove bullet points */
ul.no-bp{
    list-style-type: none; /* Remove bullets */
}